home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Include / ceval.h < prev    next >
C/C++ Source or Header  |  1997-08-30  |  4KB  |  137 lines

  1. #ifndef Py_CEVAL_H
  2. #define Py_CEVAL_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. /***********************************************************
  8. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  9. The Netherlands.
  10.  
  11.                         All Rights Reserved
  12.  
  13. Permission to use, copy, modify, and distribute this software and its
  14. documentation for any purpose and without fee is hereby granted,
  15. provided that the above copyright notice appear in all copies and that
  16. both that copyright notice and this permission notice appear in
  17. supporting documentation, and that the names of Stichting Mathematisch
  18. Centrum or CWI or Corporation for National Research Initiatives or
  19. CNRI not be used in advertising or publicity pertaining to
  20. distribution of the software without specific, written prior
  21. permission.
  22.  
  23. While CWI is the initial source for this software, a modified version
  24. is made available by the Corporation for National Research Initiatives
  25. (CNRI) at the Internet address ftp://ftp.python.org.
  26.  
  27. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  28. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  29. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  30. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  31. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  32. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  33. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  34. PERFORMANCE OF THIS SOFTWARE.
  35.  
  36. ******************************************************************/
  37.  
  38. /* Interface to random parts in ceval.c */
  39.  
  40. PyObject *PyEval_CallObjectWithKeywords
  41.     Py_PROTO((PyObject *, PyObject *, PyObject *));
  42.  
  43. /* Inline this */
  44. #define PyEval_CallObject(func,arg) \
  45.         PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)
  46.  
  47. PyObject *PyEval_GetBuiltins Py_PROTO((void));
  48. PyObject *PyEval_GetGlobals Py_PROTO((void));
  49. PyObject *PyEval_GetLocals Py_PROTO((void));
  50. PyObject *PyEval_GetOwner Py_PROTO((void));
  51. PyObject *PyEval_GetFrame Py_PROTO((void));
  52. int PyEval_GetRestricted Py_PROTO((void));
  53.  
  54. int Py_FlushLine Py_PROTO((void));
  55.  
  56. int Py_AddPendingCall Py_PROTO((int (*func) Py_PROTO((ANY *)), ANY *arg));
  57. int Py_MakePendingCalls Py_PROTO((void));
  58.  
  59.  
  60. /* Interface for threads.
  61.  
  62.    A module that plans to do a blocking system call (or something else
  63.    that lasts a long time and doesn't touch Python data) can allow other
  64.    threads to run as follows:
  65.  
  66.     ...preparations here...
  67.     Py_BEGIN_ALLOW_THREADS
  68.     ...blocking system call here...
  69.     Py_END_ALLOW_THREADS
  70.     ...interpret result here...
  71.  
  72.    The Py_BEGIN_ALLOW_THREADS/Py_END_ALLOW_THREADS pair expands to a
  73.    {}-surrounded block.
  74.    To leave the block in the middle (e.g., with return), you must insert
  75.    a line containing RET_SAVE before the return, e.g.
  76.  
  77.     if (...premature_exit...) {
  78.         Py_BLOCK_THREADS
  79.         PyErr_SetFromErrno(PyExc_IOError);
  80.         return NULL;
  81.     }
  82.  
  83.    An alternative is:
  84.  
  85.     Py_BLOCK_THREADS
  86.     if (...premature_exit...) {
  87.         PyErr_SetFromErrno(PyExc_IOError);
  88.         return NULL;
  89.     }
  90.     Py_UNBLOCK_THREADS
  91.  
  92.    For convenience, that the value of 'errno' is restored across
  93.    Py_END_ALLOW_THREADS and RET_SAVE.
  94.  
  95.    WARNING: NEVER NEST CALLS TO Py_BEGIN_ALLOW_THREADS AND
  96.    Py_END_ALLOW_THREADS!!!
  97.  
  98.    The function PyEval_InitThreads() should be called only from
  99.    initthread() in "threadmodule.c".
  100.  
  101.    Note that not yet all candidates have been converted to use this
  102.    mechanism!
  103. */
  104.  
  105. extern PyThreadState *PyEval_SaveThread Py_PROTO((void));
  106. extern void PyEval_RestoreThread Py_PROTO((PyThreadState *));
  107.  
  108. #ifdef WITH_THREAD
  109.  
  110. extern void PyEval_InitThreads Py_PROTO((void));
  111. extern void PyEval_AcquireLock Py_PROTO((void));
  112. extern void PyEval_ReleaseLock Py_PROTO((void));
  113. extern void PyEval_AcquireThread Py_PROTO((PyThreadState *tstate));
  114. extern void PyEval_ReleaseThread Py_PROTO((PyThreadState *tstate));
  115.  
  116. #define Py_BEGIN_ALLOW_THREADS { \
  117.             PyThreadState *_save; \
  118.             _save = PyEval_SaveThread();
  119. #define Py_BLOCK_THREADS    PyEval_RestoreThread(_save);
  120. #define Py_UNBLOCK_THREADS    _save = PyEval_SaveThread();
  121. #define Py_END_ALLOW_THREADS    PyEval_RestoreThread(_save); \
  122.          }
  123.  
  124. #else /* !WITH_THREAD */
  125.  
  126. #define Py_BEGIN_ALLOW_THREADS {
  127. #define Py_BLOCK_THREADS
  128. #define Py_UNBLOCK_THREADS
  129. #define Py_END_ALLOW_THREADS }
  130.  
  131. #endif /* !WITH_THREAD */
  132.  
  133. #ifdef __cplusplus
  134. }
  135. #endif
  136. #endif /* !Py_CEVAL_H */
  137.